summaryrefslogtreecommitdiffstats
path: root/Server
diff options
context:
space:
mode:
authorLukas Pioch <lukas@zgow.de>2020-10-09 18:25:34 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-10-09 19:39:20 +0200
commit6ddc03db0957f9654a9720a00937f3d2450c4868 (patch)
tree5bb606e74ae7b7740b0c53f83092ed3790e331c4 /Server
parentInclude sys/select.h on non-glibc Linux platforms (#4977) (diff)
downloadcuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.gz
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.bz2
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.lz
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.xz
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.zst
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.zip
Diffstat (limited to 'Server')
-rw-r--r--Server/Plugins/APIDump/Classes/World.lua52
1 files changed, 40 insertions, 12 deletions
diff --git a/Server/Plugins/APIDump/Classes/World.lua b/Server/Plugins/APIDump/Classes/World.lua
index b86a84e71..acfa05727 100644
--- a/Server/Plugins/APIDump/Classes/World.lua
+++ b/Server/Plugins/APIDump/Classes/World.lua
@@ -541,28 +541,56 @@ function OnAllChunksAvailable()</pre> All return values from the callbacks are i
},
DigBlock =
{
- Params =
{
+ Params =
{
- Name = "X",
- Type = "number",
- },
- {
- Name = "Y",
- Type = "number",
+ {
+ Name = "X",
+ Type = "number",
+ },
+ {
+ Name = "Y",
+ Type = "number",
+ },
+ {
+ Name = "Z",
+ Type = "number",
+ },
+ {
+ Name = "Digger",
+ Type = "cEntity",
+ IsOptional = true,
+ },
},
+ Returns =
{
- Name = "Z",
- Type = "number",
+ {
+ Type = "boolean",
+ },
},
+ Notes = "Replaces the specified block with air, without dropping the usual pickups for the block. Wakes up the simulators for the block and its neighbors. The optional Digger parameter specifies the entity who dug the block, usually a player. Returns true on success, or false if the chunk is not loaded or invalid coords. See also DropBlockAsPickups() for the version that drops pickups.",
},
- Returns =
{
+ Params =
{
- Type = "boolean",
+ {
+ Name = "BlockPos",
+ Type = "Vector3i",
+ },
+ {
+ Name = "Digger",
+ Type = "cEntity",
+ IsOptional = true,
+ },
+ },
+ Returns =
+ {
+ {
+ Type = "boolean",
+ },
},
+ Notes = "Replaces the specified block with air, without dropping the usual pickups for the block. Wakes up the simulators for the block and its neighbors. The optional Digger parameter specifies the entity who dug the block, usually a player. Returns true on success, or false if the chunk is not loaded or invalid coords. See also DropBlockAsPickups() for the version that drops pickups.",
},
- Notes = "Replaces the specified block with air, without dropping the usual pickups for the block. Wakes up the simulators for the block and its neighbors. Returns true on success, or false if the chunk is not loaded or invalid coords. See also DropBlockAsPickups() for the version that drops pickups.",
},
DoExplosionAt =
{